style.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .crew-widget {
  2. width: 100%;
  3. padding: 16px;
  4. font-family: 'Pretendard', sans-serif;
  5. }
  6. .crew-title {
  7. text-align: center;
  8. font-weight: 700;
  9. font-size: 18px;
  10. color: #FFFFFF;
  11. margin-bottom: 12px;
  12. text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  13. }
  14. .crew-empty {
  15. text-align: center;
  16. color: #666;
  17. padding: 20px;
  18. }
  19. .crew-list {
  20. display: flex;
  21. flex-direction: column;
  22. gap: 8px;
  23. }
  24. .crew-item {
  25. display: flex;
  26. align-items: center;
  27. gap: 10px;
  28. padding: 10px 12px;
  29. border-radius: 10px;
  30. background: rgba(255, 255, 255, 0.06);
  31. transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  32. &.crew-rank-1 { background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), transparent); border-left: 3px solid #FFD700; }
  33. &.crew-rank-2 { background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), transparent); border-left: 3px solid #C0C0C0; }
  34. &.crew-rank-3 { background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), transparent); border-left: 3px solid #CD7F32; }
  35. }
  36. .crew-rank-num {
  37. width: 24px;
  38. font-weight: 800;
  39. font-size: 16px;
  40. text-align: center;
  41. flex-shrink: 0;
  42. &.top-1 { color: #FFD700; }
  43. &.top-2 { color: #C0C0C0; }
  44. &.top-3 { color: #CD7F32; }
  45. &.top-default { color: #888; }
  46. }
  47. .crew-icon {
  48. width: 36px;
  49. height: 36px;
  50. border-radius: 50%;
  51. object-fit: cover;
  52. flex-shrink: 0;
  53. background: #444;
  54. }
  55. .crew-info {
  56. flex: 1;
  57. overflow: hidden;
  58. }
  59. .crew-nickname {
  60. font-weight: 600;
  61. color: #FFFFFF;
  62. font-size: 14px;
  63. overflow: hidden;
  64. text-overflow: ellipsis;
  65. white-space: nowrap;
  66. }
  67. .crew-channel {
  68. font-size: 11px;
  69. color: #888;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. white-space: nowrap;
  73. }
  74. .crew-stats {
  75. text-align: right;
  76. flex-shrink: 0;
  77. }
  78. .crew-amount {
  79. font-weight: 700;
  80. color: #FF6B35;
  81. font-size: 14px;
  82. }
  83. .crew-contribution {
  84. font-size: 11px;
  85. color: #A0D2FF;
  86. }